home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.4)
-
- ''' Python Character Mapping Codec for TIS-620.
-
- According to
- ftp://ftp.unicode.org/Public/MAPPINGS/ISO8859/8859-11.TXT the
- TIS-620 is the identical to ISO_8859-11 with the 0xA0 (no-break
- space) mapping removed.
-
- '''
- import codecs
- from encodings.iso8859_11 import decoding_map
-
- class Codec(codecs.Codec):
-
- def encode(self, input, errors = 'strict'):
- return codecs.charmap_encode(input, errors, encoding_map)
-
-
- def decode(self, input, errors = 'strict'):
- return codecs.charmap_decode(input, errors, decoding_map)
-
-
-
- class StreamWriter(Codec, codecs.StreamWriter):
- pass
-
-
- class StreamReader(Codec, codecs.StreamReader):
- pass
-
-
- def getregentry():
- return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
-
- decoding_map = decoding_map.copy()
- decoding_map.update({
- 160: None })
- encoding_map = codecs.make_encoding_map(decoding_map)
-